home *** CD-ROM | disk | FTP | other *** search
/ .net 2000 August / NET74.ISO / pc / Software / JavaApplet / AnfyMacBeta1.sea / Anfy for Macintosh / anjavapp / huerot / huerot.txt < prev    next >
Encoding:
Text File  |  1999-07-05  |  3.7 KB  |  91 lines  |  [TEXT/ttxt]

  1.  
  2.          Anfy Hue Rotator - Copyright (C) by Fabio Ciucci 1998/99
  3.  
  4.  
  5. This applet can change the hue of any GIF or JPG image. This applet is
  6. fully parameterized, so you can generate various kinds of effects.
  7.  
  8. The animation demon.gif is a courtesy of mstanya@bigfoot.com
  9.  
  10. **************************************************************************
  11.  
  12. NECESSARY FILES.
  13.  
  14. Apart from an optional foreground image, the following 3 ".class" files
  15.  must be uploaded: 
  16.  
  17. huerot.class
  18. Lware.class
  19. anfy.class
  20.  
  21. Plus, huerot.jar for speedy loading on recent browsers.
  22.  
  23. **************************************************************************
  24.  
  25. EXAMPLE.
  26.  
  27. Insert the <applet> tag in your html document as follows to add this applet
  28. to your page (Comments after the ";" symbol are code descriptions and
  29. acceptable min/max values. They are not part of the applet language):
  30.  
  31.  
  32. <applet archive="huerot.jar" code="huerot.class" width="140" height="177">
  33. <param name="credits" value="Applet by Fabio Ciucci (www.anfyteam.com)">
  34. <param name="regcode" value="NO">          ; Registration code (if you have it)
  35. <param name="reglink" value="NO">          ; Optional URL link when the applet
  36.                                            is "clicked".
  37. <param name="regnewframe" value="YES">     ; Reglink opened in new frame?
  38. <param name="regframename" value="_blank">     ; Name of new frame for reglink
  39. <param name="statusmsg" value="HueRot applet"> ; Statusbar message
  40. <param name="image" value="madpop.jpg">        ; Image to load
  41. <param name="res" value="1">                   ; resolution (1 .. 8)
  42. <param name="hueshift" value="40">             ; Speed of hue shifting (1..1000)
  43. <param name="overimg" value="NO">              ; Optional image over applet
  44. <param name="overimgX" value="0">              ; Over image X offset
  45. <param name="overimgY" value="0">              ; Over image Y offset
  46. <param name="memdelay" value="1000">           ; Memory deallocation delay
  47. <param name="priority" value="3">              ; Task priority (1..10)
  48. <param name="MinSYNC" value="10">              ; Min. milliseconds/frame for sync
  49. Sorry, your browser doesn't support Java.    ; Msg in no java browsers
  50. </applet>
  51.  
  52. *******************************************************************
  53.  
  54. INSTRUCTIONS.
  55.  
  56. The following instructions describe how to change parameters:
  57.  
  58. Attempting to change the credits parameter will disable the applet.
  59.  
  60. To activate the reg parameters read the shareware registration notes.
  61. In the "regcode" parameter, place the registration code you purchased
  62.  from the author. If the code is correct and the applet is run from
  63. the registered domain name, you can use "link" parameters to link to a URL
  64. when the applet is mouse-clicked.
  65.  
  66. If you set "regnewframe" to "YES", you can specify a specific frame location
  67. for the reglink:
  68.  
  69. "_blank"  : To load the link in a new blank unnamed browser window.
  70. "_self"   : To load the link into the same window the applet occupies.
  71. "_parent" : To load the link into the immediate FRAMESET parent.
  72. "_top"    : To load the link into the top body of the window.
  73.  
  74. You can also set a custom frame name, such as "myframe1".
  75.  
  76. With the "overimg" parameter you can specify the name of an image that will
  77. be painted over the applet. The best options are transparent GIF images.
  78. NOTE: Animated GIF images are supported, but will be animated only on 
  79. latest browsers (Netscape 4 and Explorer 4 or newer).
  80.  
  81. With "overimgX" and "overimgY" you can center the image over the applet area.
  82.  
  83. The GIF/JPG image can be of any size. If res=1, remember to place the exact
  84. size of image in "width" and "height" tags. If res=2, place doubled values,
  85. if res=3 tripled values, etc.
  86. (In fact, res is a sort of zoomer).
  87.  
  88. The "hueshift" parameter (1 .. 1000) changes the speed of hue shift.
  89.  
  90.  
  91.